home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH6 / EMAGA6 / control / client / interfaces / menuscreen.gui < prev    next >
Text File  |  2004-03-03  |  2KB  |  76 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiChunkedBitmapCtrl(MenuScreen) {
  3.    profile = "GuiContentProfile";
  4.    horizSizing = "width";
  5.    vertSizing = "height";
  6.    position = "0 0";
  7.    extent = "640 480";
  8.    minExtent = "8 8";
  9.    visible = "1";
  10.    helpTag = "0";
  11.    bitmap = "./interfaces/emaga_background";
  12.    useVariable = "0";
  13.    tile = "0";
  14.  
  15.    new GuiButtonCtrl() {
  16.       profile = "GuiButtonProfile";
  17.       horizSizing = "right";
  18.       vertSizing = "top";
  19.       position = "30 237";
  20.       extent = "120 20";
  21.       minExtent = "8 8";
  22.       visible = "1";
  23.       command = "LaunchGame();";
  24.       helpTag = "0";
  25.       text = "Start Game";
  26.       groupNum = "-1";
  27.       buttonType = "PushButton";
  28.    };
  29.    new GuiButtonCtrl() {
  30.       profile = "GuiButtonProfile";
  31.       horizSizing = "right";
  32.       vertSizing = "top";
  33.       position = "30 265";
  34.       extent = "120 20";
  35.       minExtent = "8 8";
  36.       visible = "1";
  37.       command = "Canvas.setContent(ServerScreen);";
  38.       helpTag = "0";
  39.       text = "Connect To Server";
  40.       groupNum = "-1";
  41.       buttonType = "PushButton";
  42.    };
  43.    new GuiButtonCtrl() {
  44.       profile = "GuiButtonProfile";
  45.       horizSizing = "right";
  46.       vertSizing = "top";
  47.       position = "30 291";
  48.       extent = "120 20";
  49.       minExtent = "8 8";
  50.       visible = "1";
  51.       command = "Canvas.pushDialog(SetupScreen);";
  52.       helpTag = "0";
  53.       text = "Setup";
  54.       groupNum = "-1";
  55.       buttonType = "PushButton";
  56.    };
  57.    new GuiButtonCtrl() {
  58.       profile = "GuiButtonProfile";
  59.       horizSizing = "right";
  60.       vertSizing = "top";
  61.       position = "30 434";
  62.       extent = "120 20";
  63.       minExtent = "8 8";
  64.       visible = "1";
  65.       command = "Quit();";
  66.       helpTag = "0";
  67.       text = "Quit";
  68.       groupNum = "-1";
  69.       buttonType = "PushButton";
  70.    };
  71. };
  72. //--- OBJECT WRITE END ---
  73.  
  74.  
  75.  
  76.